home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsmdebug.h < prev    next >
C/C++ Source or Header  |  1996-01-31  |  2KB  |  46 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsmdebug.h */
  20. /* Debugging definitions for memory manager */
  21. /* Requires gdebug.h (for gs_debug) */
  22.  
  23. /* Define the fill patterns used for debugging the allocator. */
  24. extern byte
  25.   gs_alloc_fill_alloc,        /* allocated but not initialized */
  26.   gs_alloc_fill_block,        /* locally allocated block */
  27.   gs_alloc_fill_collected,    /* garbage collected */
  28.   gs_alloc_fill_deleted,    /* locally deleted block */
  29.   gs_alloc_fill_free;        /* freed */
  30.  
  31. /* Define an alias for a specialized debugging flag */
  32. /* that used to be a separate variable. */
  33. #define gs_alloc_debug gs_debug['@']
  34.  
  35. /* Conditionally fill unoccupied blocks with a pattern. */
  36. extern void gs_alloc_memset(P3(void *, int/*byte*/, ulong));
  37. #ifdef DEBUG
  38. /* The following peculiar syntax avoids incorrect capture of an 'else'. */
  39. #  define gs_alloc_fill(ptr, fill, len)\
  40.      do { if ( gs_alloc_debug ) gs_alloc_memset(ptr, fill, (ulong)(len));\
  41.      } while ( 0 )
  42. #else
  43. #  define gs_alloc_fill(ptr, fill, len)\
  44.      DO_NOTHING
  45. #endif
  46.